home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************
- ; Filename : rect.h
- ;
- ; Date : 27-6-94
- ; Mod. Date : 29-7-94
- ;
- ; Others : Obtained from Ferraro
- ; : VGA Trainer (smith9@batis.bis.und.ac.za)
- ; ; VGL20 (morley@camosun.bc.ca)
- ;****************************************************/
- #ifndef RECT_H
- #define RECT_H
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- void mtRect(int x1, int y1, int x2, int y2, int color);
- void mtCRect(int x1,int y1,int x2,int y2,int color);
-
- void mtFillRect(int x1, int y1, int x2, int y2, int color);
- void mtCFillRect(int x1,int y1,int x2,int y2,int color);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif RECT_H
-
-